home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2009 February / PCWFEB09.iso / Software / Linux / Kubuntu 8.10 / kubuntu-8.10-desktop-i386.iso / casper / filesystem.squashfs / usr / lib / python2.5 / Queue.pyc (.txt) < prev    next >
Python Compiled Bytecode  |  2008-10-29  |  8KB  |  239 lines

  1. # Source Generated with Decompyle++
  2. # File: in.pyc (Python 2.5)
  3.  
  4. '''A multi-producer, multi-consumer queue.'''
  5. from time import time as _time
  6. from collections import deque
  7. __all__ = [
  8.     'Empty',
  9.     'Full',
  10.     'Queue']
  11.  
  12. class Empty(Exception):
  13.     '''Exception raised by Queue.get(block=0)/get_nowait().'''
  14.     pass
  15.  
  16.  
  17. class Full(Exception):
  18.     '''Exception raised by Queue.put(block=0)/put_nowait().'''
  19.     pass
  20.  
  21.  
  22. class Queue:
  23.     '''Create a queue object with a given maximum size.
  24.  
  25.     If maxsize is <= 0, the queue size is infinite.
  26.     '''
  27.     
  28.     def __init__(self, maxsize = 0):
  29.         
  30.         try:
  31.             import threading as threading
  32.         except ImportError:
  33.             import dummy_threading as threading
  34.  
  35.         self._init(maxsize)
  36.         self.mutex = threading.Lock()
  37.         self.not_empty = threading.Condition(self.mutex)
  38.         self.not_full = threading.Condition(self.mutex)
  39.         self.all_tasks_done = threading.Condition(self.mutex)
  40.         self.unfinished_tasks = 0
  41.  
  42.     
  43.     def task_done(self):
  44.         '''Indicate that a formerly enqueued task is complete.
  45.  
  46.         Used by Queue consumer threads.  For each get() used to fetch a task,
  47.         a subsequent call to task_done() tells the queue that the processing
  48.         on the task is complete.
  49.  
  50.         If a join() is currently blocking, it will resume when all items
  51.         have been processed (meaning that a task_done() call was received
  52.         for every item that had been put() into the queue).
  53.  
  54.         Raises a ValueError if called more times than there were items
  55.         placed in the queue.
  56.         '''
  57.         self.all_tasks_done.acquire()
  58.         
  59.         try:
  60.             unfinished = self.unfinished_tasks - 1
  61.             if unfinished <= 0:
  62.                 if unfinished < 0:
  63.                     raise ValueError('task_done() called too many times')
  64.                 
  65.                 self.all_tasks_done.notifyAll()
  66.             
  67.             self.unfinished_tasks = unfinished
  68.         finally:
  69.             self.all_tasks_done.release()
  70.  
  71.  
  72.     
  73.     def join(self):
  74.         '''Blocks until all items in the Queue have been gotten and processed.
  75.  
  76.         The count of unfinished tasks goes up whenever an item is added to the
  77.         queue. The count goes down whenever a consumer thread calls task_done()
  78.         to indicate the item was retrieved and all work on it is complete.
  79.  
  80.         When the count of unfinished tasks drops to zero, join() unblocks.
  81.         '''
  82.         self.all_tasks_done.acquire()
  83.         
  84.         try:
  85.             while self.unfinished_tasks:
  86.                 self.all_tasks_done.wait()
  87.         finally:
  88.             self.all_tasks_done.release()
  89.  
  90.  
  91.     
  92.     def qsize(self):
  93.         '''Return the approximate size of the queue (not reliable!).'''
  94.         self.mutex.acquire()
  95.         n = self._qsize()
  96.         self.mutex.release()
  97.         return n
  98.  
  99.     
  100.     def empty(self):
  101.         '''Return True if the queue is empty, False otherwise (not reliable!).'''
  102.         self.mutex.acquire()
  103.         n = self._empty()
  104.         self.mutex.release()
  105.         return n
  106.  
  107.     
  108.     def full(self):
  109.         '''Return True if the queue is full, False otherwise (not reliable!).'''
  110.         self.mutex.acquire()
  111.         n = self._full()
  112.         self.mutex.release()
  113.         return n
  114.  
  115.     
  116.     def put(self, item, block = True, timeout = None):
  117.         """Put an item into the queue.
  118.  
  119.         If optional args 'block' is true and 'timeout' is None (the default),
  120.         block if necessary until a free slot is available. If 'timeout' is
  121.         a positive number, it blocks at most 'timeout' seconds and raises
  122.         the Full exception if no free slot was available within that time.
  123.         Otherwise ('block' is false), put an item on the queue if a free slot
  124.         is immediately available, else raise the Full exception ('timeout'
  125.         is ignored in that case).
  126.         """
  127.         self.not_full.acquire()
  128.         
  129.         try:
  130.             if not block:
  131.                 if self._full():
  132.                     raise Full
  133.                 
  134.             elif timeout is None:
  135.                 while self._full():
  136.                     self.not_full.wait()
  137.             elif timeout < 0:
  138.                 raise ValueError("'timeout' must be a positive number")
  139.             
  140.             endtime = _time() + timeout
  141.             while self._full():
  142.                 remaining = endtime - _time()
  143.                 if remaining <= 0:
  144.                     raise Full
  145.                 
  146.                 self.not_full.wait(remaining)
  147.             self._put(item)
  148.             self.unfinished_tasks += 1
  149.             self.not_empty.notify()
  150.         finally:
  151.             self.not_full.release()
  152.  
  153.  
  154.     
  155.     def put_nowait(self, item):
  156.         '''Put an item into the queue without blocking.
  157.  
  158.         Only enqueue the item if a free slot is immediately available.
  159.         Otherwise raise the Full exception.
  160.         '''
  161.         return self.put(item, False)
  162.  
  163.     
  164.     def get(self, block = True, timeout = None):
  165.         """Remove and return an item from the queue.
  166.  
  167.         If optional args 'block' is true and 'timeout' is None (the default),
  168.         block if necessary until an item is available. If 'timeout' is
  169.         a positive number, it blocks at most 'timeout' seconds and raises
  170.         the Empty exception if no item was available within that time.
  171.         Otherwise ('block' is false), return an item if one is immediately
  172.         available, else raise the Empty exception ('timeout' is ignored
  173.         in that case).
  174.         """
  175.         self.not_empty.acquire()
  176.         
  177.         try:
  178.             if not block:
  179.                 if self._empty():
  180.                     raise Empty
  181.                 
  182.             elif timeout is None:
  183.                 while self._empty():
  184.                     self.not_empty.wait()
  185.             elif timeout < 0:
  186.                 raise ValueError("'timeout' must be a positive number")
  187.             
  188.             endtime = _time() + timeout
  189.             while self._empty():
  190.                 remaining = endtime - _time()
  191.                 if remaining <= 0:
  192.                     raise Empty
  193.                 
  194.                 self.not_empty.wait(remaining)
  195.             item = self._get()
  196.             self.not_full.notify()
  197.             return item
  198.         finally:
  199.             self.not_empty.release()
  200.  
  201.  
  202.     
  203.     def get_nowait(self):
  204.         '''Remove and return an item from the queue without blocking.
  205.  
  206.         Only get an item if one is immediately available. Otherwise
  207.         raise the Empty exception.
  208.         '''
  209.         return self.get(False)
  210.  
  211.     
  212.     def _init(self, maxsize):
  213.         self.maxsize = maxsize
  214.         self.queue = deque()
  215.  
  216.     
  217.     def _qsize(self):
  218.         return len(self.queue)
  219.  
  220.     
  221.     def _empty(self):
  222.         return not (self.queue)
  223.  
  224.     
  225.     def _full(self):
  226.         if self.maxsize > 0:
  227.             pass
  228.         return len(self.queue) == self.maxsize
  229.  
  230.     
  231.     def _put(self, item):
  232.         self.queue.append(item)
  233.  
  234.     
  235.     def _get(self):
  236.         return self.queue.popleft()
  237.  
  238.  
  239.